home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / popularity-contest.postrm < prev    next >
Text File  |  2008-10-20  |  526b  |  23 lines

  1. #!/bin/sh
  2.  
  3. # purge the config file which is created in the postinst script
  4. if [ "$1" = purge ] ; then
  5.         rm -f /etc/popularity-contest.conf
  6. fi
  7.  
  8. if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
  9.     # Source debconf library.
  10.     . /usr/share/debconf/confmodule
  11.     # Remove my changes to the db.
  12.     db_purge
  13. fi
  14.  
  15. # Automatically added by dh_installdebconf
  16. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  17.     . /usr/share/debconf/confmodule
  18.     db_purge
  19. fi
  20. # End automatically added section
  21.  
  22.  
  23.